home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / awe2-0_1.lha / awe2-0.1 / Src / Random.cc < prev    next >
C/C++ Source or Header  |  1989-02-20  |  1KB  |  30 lines

  1. /* 
  2. Copyright (C) 1988 Free Software Foundation
  3.     written by Dirk Grunwald (grunwald@cs.uiuc.edu)
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY.  No author or distributor
  9. accepts responsibility to anyone for the consequences of using it
  10. or for whether it serves any particular purpose or works at all,
  11. unless he says so in writing.  Refer to the GNU CC General Public
  12. License for full details.
  13.  
  14. Everyone is granted permission to copy, modify and redistribute
  15. GNU CC, but only under the conditions described in the
  16. GNU CC General Public License.   A copy of this license is
  17. supposed to have been given to you along with GNU CC so you
  18. can know your rights and responsibilities.  It should be in a
  19. file named COPYING.  Among other things, the copyright notice
  20. and this notice must be preserved on all copies.  
  21. */
  22. #include <Random.h>
  23. #include <assert.h>
  24.  
  25. double Random::operator()()
  26. {
  27.     assert2(0,"subClassResponsibility");
  28.     return(0);
  29. }
  30.